iT邦幫忙

2023 iThome 鐵人賽

DAY 10
0
自我挑戰組

CPE 49題訓練系列 第 10

YKL37.UVA10056 What is the Probability? YKL12.UVA10170 The Hotel with Infinite Rooms

  • 分享至 

  • xImage
  •  

What is the Probability?

T=input()
for t in range(int(T)):
	m,p,k=map(float,input().split())
	q=1-p
	if (1-q**m)==0:
		print('0.0000')
	else:
		ans=(q**(k-1)*p)/(1-q**m)
		print('{:.4f}'.format(ans))

The Hotel with Infinite Rooms

while 1:
	try:
		g,d=map(int,input().split())
		f=2*d+g**2-g
		ans=int(f**(1/2))
		if ans*(ans+1)<f:
			ans+=1
		print(ans)
	except:
		break

上一篇
YKL16.UVA272 TeX Quotes YKL18.UVA10038 Jolly Jumpers
下一篇
YKL31.UVA10268 498 YKL02.UVA10783 Odd Sum
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言